home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / GRP_CVTR / REALIZ10 / SAMP007.RDR < prev    next >
Text File  |  1994-06-02  |  807b  |  29 lines

  1. * Different finishes
  2. *   In the dxf file the color numbers assigned to the balls are assigned a
  3. *   different finish.  For example, all objects colored red is assigned
  4. *   a matte finish.
  5.  
  6. global
  7.     sky cloudy
  8.     floor tiles
  9.  
  10. insert before_textures begin_insert
  11. #include "rshapes.inc"
  12. end_insert
  13.  
  14. * The keywork after "texture" in the following lines are either a color
  15. *   keyword or a color number from 0-255 (see Directive File Syntax):
  16. *   For example "red" can be replaced by "1", "3" by "green", etc.
  17.  
  18. texture red finish matte
  19. texture 2 finish plastic
  20. texture 3 finish glossy
  21. texture 4 finish metallic
  22. texture blue finish reflective
  23. texture 6 finish glassy
  24. texture 7 finish luminous
  25. texture orange
  26.  
  27. * The other unneeded blocks are left out
  28. block ELLIPS external Ellipsoid
  29.